#1 : Uso de colores para texto y fondo, incluyendo al menos colores degradados en alguna de sus cajas

HTML5 <section> Element

The <section> element defines a section in a document.

According to W3C's HTML5 documentation: "A section is a thematic grouping of content, typically with a heading."

A Web site's home page could be split into sections for introduction, content, and contact information.

There are no limitations to the number of <section> elements inside a web page.

#2 : Inclusión de tipografías externas de Google Fonts, Adobe Edge Web Fonts o un servicio similar on line

The HTML5 <article> Element

The <article> element specifies independent, self-contained content.

An article should make sense on its own, and it should be possible to read it independently from the rest of the web site.

Examples of where an <article> element can be used:

  1. Forum post
  2. Blog post
  3. Newspaper article

#3 : Distintos encabezados

The HTML5 <aside> Element

The <aside> element defines some content aside from the content it is placed in (like a sidebar).

The aside content should be related to the surrounding content.

The following represents an example of using a <aside> tag:


<p> My family and I visited The Epcot center this summer. <p>

#4 : Uso de caracteres especiales en HTML5

Todo el contenido incluido dentro del elemento <body> es parte de una sección.

Las secciones en HTML5 pueden ser anidadas.

Además de la sección principal, definida por el elemento <body>, los límites de la sección son definidos explícita o implícitamente.

La secciones definidas explícitamente son el contenido definido en las etiquetas <body>, <section>, <article>, <aside>, <footer>, <header>, y <nav>.

Nota: Cada sección puede tener su propia jerarquía de cabeceras.

Por lo tanto, incluso una sección anidada puede tener un elemento <h1>.

Consulte también Definiendo cabeceras en HTML5.

HTML5 quita la necesidad de elementos <div> para definir secciones semánticas sin definir valores específicos para los atributos class, introduciendo un nuevo elemento, <section>, el elemento de sección HTML.

Mezclar varios documentos es difícil: la inclusión de un sub-documento en un documento principal.

Esto se resuelve en HTML5 con los elementos de seccionado

son siempre subsecciones de su sección ancestra más cercana.

#5 : Imágenes de tipo bitmap y vectorial

#6 : Video

#7 Todas las cajas incluyen bordes redondeados

© 2016 Carmel - Derechos Reservados.